home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / CONTENTS / BONUS / FULL / wikiwriter / setup-ww2x.exe / {app} / htmltut / Add+a+Heading.db next >
Text File  |  2002-07-01  |  781b  |  27 lines

  1. @@inc HTMLToc
  2. == Add a heading
  3.  
  4. At the top of your page, you should now have
  5.  
  6. <pre>
  7.    <html>
  8.    <head>
  9.    <title>Home Page - My First Web</title>
  10.    </head>
  11.    <body>
  12.    <p>This is one paragraph.</p>
  13.    </body>
  14.    </html>
  15. </pre>
  16.  
  17. Headings on a Web page are like the chapter and section headings in a book. They label the sections of a page, and provide a quick guide to the contents.
  18.  
  19. HTML offers six levels of headings, named (reasonably enough) h1, h2, h3, h4, h5, and h6. In your editor, between the </body> tag and the <p> tag, create a level 1 heading element (make "h1" into a start tag and an end tag) containing the text:
  20.  
  21. <pre>
  22.    This is Heading One
  23. </pre>
  24.  
  25. [[b Go to ((More Headings))]]
  26.  
  27.